home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / src / chmod.c < prev    next >
C/C++ Source or Header  |  1996-01-04  |  156b  |  11 lines

  1.  
  2. #include "amiga.h"
  3.  
  4. int chmod(const char *name, int mode)
  5. {
  6.     __chkabort();
  7.     if (SetProtection(name, _make_protection(mode)))
  8.     return 0;
  9.     ERROR;
  10. }
  11.